home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
jovept2.arc
/
TERM.H
< prev
next >
Wrap
Text File
|
1985-05-30
|
640b
|
31 lines
/* term.h */
/* variables necessary for terminal operations. */
#ifndef JOVETERM
extern int LI; /* Number of lines */
extern int CO; /* Number of columns */
extern int TABS; /* Whether we are in tabs mode */
extern int UpLen; /* Length of the UP string */
extern int HomeLen; /* Length of Home string */
extern int LowerLen; /* Length of lower string */
extern int BG; /* Are we on a bitgraph */
/* extern char PC; */
extern char *BC; /* Back space */
extern int ospeed;
extern int hasIC;
extern int hasIM;
#endif
#define DELETE 0
#define INSERTCH 1
#define CLREOL 2
#define INSERT 3
/* end */